home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
Dev
/
fpc
/
amigaunits
/
romboot_base.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
2000-01-01
|
975b
|
44 lines
{
This file is part of the Free Pascal run time library.
A file in Amiga system run time library.
Copyright (c) 1998-2000 by Nils Sjoholm
member of the Amiga RTL development team.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
unit romboot_base;
INTERFACE
uses exec;
Type
pRomBootBase = ^tRomBootBase;
tRomBootBase = record
LibNode : tLibrary;
ExecBase : pExecBase;
BootList : tList;
Reserved : Array [0..3] of Longint;
{ for future expansion }
end;
Const
ROMBOOT_NAME : PChar = 'romboot.library';
IMPLEMENTATION
end.